Version

addDragChannels Method

Sets the channels that the source object is allowed to be dragged onto.
Syntax
ASP.NET Ajax Javascript (Specification) 
function addDragChannels( 
   channels : {Any}[]
) : (Any);
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfDragDropBehavior.addDragChannels({Any}[]);

Parameters

channels
An array of keys (strings or integers).
Remarks
Once a channel is specified, a source object will only be allowed to be dragged onto a target that is listening on the same channel, or a target that is not listening on any channels. One use of Channels is to protect a Infragistics.Web.UI.DragDropBehavior from receiving unwanted drop elements from another DragDropBehavior.
See Also